Uses of Class
org.eclipse.vtp.framework.interactions.voice.vxml.Output

Packages that use Output
org.eclipse.vtp.framework.interactions.voice.vxml   
 

Uses of Output in org.eclipse.vtp.framework.interactions.voice.vxml
 

Subclasses of Output in org.eclipse.vtp.framework.interactions.voice.vxml
 class AudioOutput
          The AudioOutput class represents the <audio> VXML element and specifies the location of an audio file to be played to the caller.
 class BasicOutput
          BasicOutput is an abstract class that represents textual outputs to be rendered by TTS.
 class BasicOutputSet
          The OutputSet class allows the combination of Outputs into a single output for the IVR to render to the caller.
 class OutputSet
          The OutputSet class allows the combination of Outputs into a single output for the IVR to render to the caller.
 class TextOutput
          The TextOutput class wraps raw text that is meant to be rendered to the caller with TTS.
 class ValueOutput
          The ValueOutput represents the <value> VXML element.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml that return Output
 Output Prompt.getOutput()
          Returns the output to render.
 Output Choice.getOutput()
          Returns the Output object to play to the caller to describe this choice
 Output[] OutputSet.getOutputs()
          Returns the list of outputs in this set.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type Output
 void OutputSet.addOutput(Output output)
          Appends the Output to the list of outputs to render to the caller.
 void OutputSet.removeOutput(Output output)
          Removes the Output from the list of outputs to render to the caller.
 void Prompt.setOutput(Output output)
          Sets the output to render.
 void Choice.setOutput(Output output)
          Sets the output to be rendered to the caller when this Choice is enumerated.
 

Constructors in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type Output
Choice(java.lang.String targetURI, Output output)
          Creates a new instance of the Choice element.
Choice(java.lang.String targetURI, java.lang.String dtmf, Output output)
          Creates a new instance of Choice element with the specified targetURI, DTMF grammar, and output, but the other grammar is left initialized to null.
Choice(java.lang.String targetURI, java.lang.String dtmf, Output output, Grammar grammar)
          Creates a new instance of Choice element with the specified targetURI, grammars, and output.
Prompt(Output output)
          Creates a new instance of Prompt with the given output.
Prompt(Output output, boolean bargeIn)
          Creates a new instance of Prompt with the given output.